obj1 >= obj2

Bigger-or-equal operator. Returns true if object obj1 is bigger or equal than object obj2.
If the compared objects are strings, the function uses the lexicographical order implemented by the java language.


Example


3 >= 4

false

"a">="z"

false